From: Glenn Morris Date: Fri, 9 Sep 2011 06:32:08 +0000 (-0700) Subject: * lisp/woman.el (woman-special-characters): Add oq and cq quote characters. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~324^2~2354 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=6922d9f472afe258613a48d1a880130a2eb4aff3;p=emacs.git * lisp/woman.el (woman-special-characters): Add oq and cq quote characters. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index fefea7e4bbc..51ae7211197 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -2,6 +2,7 @@ * woman.el (woman-if-body): When processing an .el block, do not delete the next .el block as well. (Bug#9447) + (woman-special-characters): Add oq and cq quote characters. 2011-09-08 Martin Rudalics diff --git a/lisp/woman.el b/lisp/woman.el index 67112ba1745..b1b067b291f 100644 --- a/lisp/woman.el +++ b/lisp/woman.el @@ -2937,11 +2937,14 @@ interpolated by `\*x' and `\*(xx' escapes." ("bv" "|") ; bold vertical ;; groff etc. extensions: + ;; List these via eg man -Tdvi groff_char > groff_char.dvi. ("lq" "\"") ("rq" "\"") ("aq" "'") ("ha" "^") ("ti" "~") + ("oq" "‘") ; u2018 + ("cq" "’") ; u2019 ) "Alist of special character codes with ASCII and extended-font equivalents. Each alist elements has the form @@ -4594,4 +4597,9 @@ logging the message." (provide 'woman) + +;; Local Variables: +;; coding: utf-8 +;; End: + ;;; woman.el ends here